home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / jovept2.arc / TUNE.H < prev    next >
Encoding:
C/C++ Source or Header  |  1985-05-30  |  896 b   |  36 lines

  1. /* tune.h */
  2. #define TMPFILE    "/tmp/joveXXXXXX"
  3.     /* Where jove should put the tmp file */
  4.  
  5.  
  6.     /* BIGTMP allows 512k bytes in tmp file.  Otherwise 256k bytes */
  7.  
  8. #define DESCRIBE    "/usr/jove/lib/describe.com"
  9.  
  10. #define FINDCOM    "/usr/jove/lib/findcom"
  11.     /* Where to search for the describe command */
  12.  
  13. /* #define LSRHS_KLUDGERY        /* Probably ONLY if you are at LS */
  14.  
  15. #define MENLO_JCL        /* If you have job stopping.  Probably
  16.                    not necessary for most systems with
  17.                    job stopping, but ours is in the middle
  18.                    of changing over ... */
  19.  
  20. #ifdef VAX
  21. #define VMUNIX    1        /* Vax unix */
  22. #endif
  23. typedef int disk_line;
  24.  
  25.  
  26.  
  27. #ifndef VMUNIX
  28. typedef    short    disk_line;
  29. #define BUFSIZ    512
  30. #else
  31. typedef    long    disk_line;
  32. #define BUFSIZ    1024
  33. #endif
  34.  
  35. /* end */
  36.